home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / WLIB.ZIP / FATAL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-18  |  324 b   |  18 lines

  1. #include <WStr.h>
  2. #include <stdio.h>
  3. #include <conio.h>
  4. #include <stdlib.h>
  5.  
  6. //  what goes in here will change from application to application
  7.  
  8. void FatalError(const char* Str)
  9.   {
  10.     puts("\n");
  11.     cputs("Fatal Error Encountered:  \"");
  12.     cputs(Str);
  13.     cputs("\"");
  14.     puts("");
  15.     exit(-1);
  16.   }
  17.  
  18.